blob: af9f709ccf36b37ab4b143eaad218372af3e0ee4 [file] [log] [blame]
Junio C Hamanodfccbb02008-05-26 01:16:141gittutorial(7)
2==============
3
4NAME
5----
Junio C Hamano076ffcc2013-02-06 05:13:216gittutorial - A tutorial introduction to Git (for version 1.5.1 or newer)
Junio C Hamanodfccbb02008-05-26 01:16:147
8SYNOPSIS
9--------
Junio C Hamano15567bc2011-07-23 00:51:5910[verse]
Junio C Hamanodfccbb02008-05-26 01:16:1411git *
12
13DESCRIPTION
14-----------
Junio C Hamano1a4e8412005-12-27 08:17:2315
Junio C Hamano076ffcc2013-02-06 05:13:2116This tutorial explains how to import a new project into Git, make
Junio C Hamanoc2b0a492006-01-23 07:54:3617changes to it, and share changes with other developers.
Junio C Hamano1a4e8412005-12-27 08:17:2318
Junio C Hamano076ffcc2013-02-06 05:13:2119If you are instead primarily interested in using Git to fetch a project,
Junio C Hamanoed7f4f62007-05-20 09:09:0920for example, to test the latest version, you may prefer to start with
21the first two chapters of link:user-manual.html[The Git User's Manual].
22
Junio C Hamanofce7c7e2008-07-02 03:06:3823First, note that you can get documentation for a command such as
24`git log --graph` with:
Junio C Hamano1a4e8412005-12-27 08:17:2325
26------------------------------------------------
Junio C Hamanofce7c7e2008-07-02 03:06:3827$ man git-log
Junio C Hamano1a4e8412005-12-27 08:17:2328------------------------------------------------
29
Junio C Hamanof66ecee2008-11-17 18:25:4330or:
31
32------------------------------------------------
33$ git help log
34------------------------------------------------
35
36With the latter, you can use the manual viewer of your choice; see
37linkgit:git-help[1] for more information.
38
Junio C Hamano076ffcc2013-02-06 05:13:2139It is a good idea to introduce yourself to Git with your name and
Junio C Hamanoedd2b0a2007-01-15 06:12:4540public email address before doing any operation. The easiest
41way to do so is:
Junio C Hamano699660b2006-11-29 20:40:1042
43------------------------------------------------
Junio C Hamano7ad22dc2007-01-29 02:55:4844$ git config --global user.name "Your Name Comes Here"
45$ git config --global user.email you@yourdomain.example.com
Junio C Hamano699660b2006-11-29 20:40:1046------------------------------------------------
47
48
Junio C Hamanoc2b0a492006-01-23 07:54:3649Importing a new project
Junio C Hamano1a4e8412005-12-27 08:17:2350-----------------------
51
Junio C Hamanoc2b0a492006-01-23 07:54:3652Assume you have a tarball project.tar.gz with your initial work. You
Junio C Hamano076ffcc2013-02-06 05:13:2153can place it under Git revision control as follows.
Junio C Hamano1a4e8412005-12-27 08:17:2354
Junio C Hamano1a4e8412005-12-27 08:17:2355------------------------------------------------
Junio C Hamanoc2b0a492006-01-23 07:54:3656$ tar xzf project.tar.gz
57$ cd project
Junio C Hamanofc4d38c2007-01-08 06:53:3258$ git init
Junio C Hamano1a4e8412005-12-27 08:17:2359------------------------------------------------
60
Junio C Hamanoc2b0a492006-01-23 07:54:3661Git will reply
Junio C Hamano1a4e8412005-12-27 08:17:2362
Junio C Hamano1a4e8412005-12-27 08:17:2363------------------------------------------------
Junio C Hamano7d23f5e2006-12-16 07:44:0464Initialized empty Git repository in .git/
Junio C Hamano1a4e8412005-12-27 08:17:2365------------------------------------------------
Junio C Hamano1a4e8412005-12-27 08:17:2366
Junio C Hamanoc2b0a492006-01-23 07:54:3667You've now initialized the working directory--you may notice a new
Junio C Hamanoed7f4f62007-05-20 09:09:0968directory created, named ".git".
69
Junio C Hamano076ffcc2013-02-06 05:13:2170Next, tell Git to take a snapshot of the contents of all files under the
Junio C Hamano1aa40d22010-01-21 17:46:4371current directory (note the '.'), with 'git add':
Junio C Hamano1a4e8412005-12-27 08:17:2372
Junio C Hamanoc2b0a492006-01-23 07:54:3673------------------------------------------------
74$ git add .
75------------------------------------------------
76
Junio C Hamano076ffcc2013-02-06 05:13:2177This snapshot is now stored in a temporary staging area which Git calls
Junio C Hamanoed7f4f62007-05-20 09:09:0978the "index". You can permanently store the contents of the index in the
Junio C Hamano1aa40d22010-01-21 17:46:4379repository with 'git commit':
Junio C Hamanoc2b0a492006-01-23 07:54:3680
81------------------------------------------------
Junio C Hamano699660b2006-11-29 20:40:1082$ git commit
Junio C Hamanoc2b0a492006-01-23 07:54:3683------------------------------------------------
84
Junio C Hamanoed7f4f62007-05-20 09:09:0985This will prompt you for a commit message. You've now stored the first
Junio C Hamano076ffcc2013-02-06 05:13:2186version of your project in Git.
Junio C Hamanoc2b0a492006-01-23 07:54:3687
Junio C Hamano79770b62007-01-07 07:43:5888Making changes
89--------------
90
Junio C Hamanoed7f4f62007-05-20 09:09:0991Modify some files, then add their updated contents to the index:
Junio C Hamanoc2b0a492006-01-23 07:54:3692
93------------------------------------------------
Junio C Hamano79770b62007-01-07 07:43:5894$ git add file1 file2 file3
Junio C Hamanoed7f4f62007-05-20 09:09:0995------------------------------------------------
96
97You are now ready to commit. You can see what is about to be committed
Junio C Hamano1aa40d22010-01-21 17:46:4398using 'git diff' with the --cached option:
Junio C Hamanoed7f4f62007-05-20 09:09:0999
100------------------------------------------------
101$ git diff --cached
102------------------------------------------------
103
Junio C Hamano1aa40d22010-01-21 17:46:43104(Without --cached, 'git diff' will show you any changes that
Junio C Hamanoed7f4f62007-05-20 09:09:09105you've made but not yet added to the index.) You can also get a brief
Junio C Hamano1aa40d22010-01-21 17:46:43106summary of the situation with 'git status':
Junio C Hamanoed7f4f62007-05-20 09:09:09107
108------------------------------------------------
109$ git status
110# On branch master
111# Changes to be committed:
112# (use "git reset HEAD <file>..." to unstage)
113#
114# modified: file1
115# modified: file2
116# modified: file3
117#
118------------------------------------------------
119
120If you need to make any further adjustments, do so now, and then add any
121newly modified content to the index. Finally, commit your changes with:
122
123------------------------------------------------
Junio C Hamanoeb692952007-01-03 22:02:12124$ git commit
Junio C Hamanoc2b0a492006-01-23 07:54:36125------------------------------------------------
126
Junio C Hamano6fb124c2008-06-13 10:04:01127This will again prompt you for a message describing the change, and then
Junio C Hamanoed7f4f62007-05-20 09:09:09128record a new version of the project.
Junio C Hamano79770b62007-01-07 07:43:58129
Junio C Hamano1aa40d22010-01-21 17:46:43130Alternatively, instead of running 'git add' beforehand, you can use
Junio C Hamano699660b2006-11-29 20:40:10131
132------------------------------------------------
133$ git commit -a
134------------------------------------------------
Junio C Hamanoc2b0a492006-01-23 07:54:36135
Junio C Hamanoed7f4f62007-05-20 09:09:09136which will automatically notice any modified (but not new) files, add
137them to the index, and commit, all in one step.
Junio C Hamano79770b62007-01-07 07:43:58138
Junio C Hamanoc2b0a492006-01-23 07:54:36139A note on commit messages: Though not required, it's a good idea to
140begin the commit message with a single short (less than 50 character)
141line summarizing the change, followed by a blank line and then a more
Junio C Hamano281fd392012-09-17 23:57:41142thorough description. The text up to the first blank line in a commit
143message is treated as the commit title, and that title is used
Junio C Hamano076ffcc2013-02-06 05:13:21144throughout Git. For example, linkgit:git-format-patch[1] turns a
Junio C Hamano281fd392012-09-17 23:57:41145commit into email, and it uses the title on the Subject line and the
146rest of the commit in the body.
Junio C Hamanoc2b0a492006-01-23 07:54:36147
Junio C Hamanoe7935c42006-12-13 21:32:17148Git tracks content not files
149----------------------------
Junio C Hamanoc2b0a492006-01-23 07:54:36150
Junio C Hamanofce7c7e2008-07-02 03:06:38151Many revision control systems provide an `add` command that tells the
152system to start tracking changes to a new file. Git's `add` command
Junio C Hamano1aa40d22010-01-21 17:46:43153does something simpler and more powerful: 'git add' is used both for new
Junio C Hamanoed7f4f62007-05-20 09:09:09154and newly modified files, and in both cases it takes a snapshot of the
155given files and stages that content in the index, ready for inclusion in
156the next commit.
Junio C Hamanoe7935c42006-12-13 21:32:17157
Junio C Hamanof614c642007-06-11 01:21:54158Viewing project history
159-----------------------
Junio C Hamanoc2b0a492006-01-23 07:54:36160
161At any point you can view the history of your changes using
162
163------------------------------------------------
Junio C Hamano6f8a7902006-05-22 01:10:13164$ git log
Junio C Hamanoc2b0a492006-01-23 07:54:36165------------------------------------------------
166
167If you also want to see complete diffs at each step, use
168
169------------------------------------------------
Junio C Hamano6f8a7902006-05-22 01:10:13170$ git log -p
Junio C Hamanoc2b0a492006-01-23 07:54:36171------------------------------------------------
172
Junio C Hamanoeb692952007-01-03 22:02:12173Often the overview of the change is useful to get a feel of
174each step
175
176------------------------------------------------
177$ git log --stat --summary
178------------------------------------------------
179
Junio C Hamanoc2b0a492006-01-23 07:54:36180Managing branches
181-----------------
182
Junio C Hamano076ffcc2013-02-06 05:13:21183A single Git repository can maintain multiple branches of
Junio C Hamanoc2b0a492006-01-23 07:54:36184development. To create a new branch named "experimental", use
185
186------------------------------------------------
187$ git branch experimental
188------------------------------------------------
189
190If you now run
191
192------------------------------------------------
193$ git branch
194------------------------------------------------
195
196you'll get a list of all existing branches:
197
198------------------------------------------------
199 experimental
200* master
201------------------------------------------------
202
203The "experimental" branch is the one you just created, and the
204"master" branch is a default branch that was created for you
205automatically. The asterisk marks the branch you are currently on;
206type
207
208------------------------------------------------
209$ git checkout experimental
210------------------------------------------------
211
212to switch to the experimental branch. Now edit a file, commit the
213change, and switch back to the master branch:
214
215------------------------------------------------
216(edit file)
217$ git commit -a
218$ git checkout master
219------------------------------------------------
220
221Check that the change you made is no longer visible, since it was
222made on the experimental branch and you're back on the master branch.
223
224You can make a different change on the master branch:
225
226------------------------------------------------
227(edit file)
228$ git commit -a
229------------------------------------------------
230
231at this point the two branches have diverged, with different changes
Junio C Hamano0df34342006-11-22 08:28:50232made in each. To merge the changes made in experimental into master, run
Junio C Hamanoc2b0a492006-01-23 07:54:36233
234------------------------------------------------
Junio C Hamanoedd2b0a2007-01-15 06:12:45235$ git merge experimental
Junio C Hamanoc2b0a492006-01-23 07:54:36236------------------------------------------------
237
238If the changes don't conflict, you're done. If there are conflicts,
239markers will be left in the problematic files showing the conflict;
240
241------------------------------------------------
242$ git diff
243------------------------------------------------
244
245will show this. Once you've edited the files to resolve the
246conflicts,
247
248------------------------------------------------
249$ git commit -a
250------------------------------------------------
251
252will commit the result of the merge. Finally,
253
254------------------------------------------------
255$ gitk
256------------------------------------------------
257
258will show a nice graphical representation of the resulting history.
259
Junio C Hamanoeb692952007-01-03 22:02:12260At this point you could delete the experimental branch with
261
262------------------------------------------------
263$ git branch -d experimental
264------------------------------------------------
265
266This command ensures that the changes in the experimental branch are
267already in the current branch.
268
Junio C Hamanoc2b0a492006-01-23 07:54:36269If you develop on a branch crazy-idea, then regret it, you can always
270delete the branch with
271
272-------------------------------------
273$ git branch -D crazy-idea
Junio C Hamano1a4e8412005-12-27 08:17:23274-------------------------------------
275
Junio C Hamanoc2b0a492006-01-23 07:54:36276Branches are cheap and easy, so this is a good way to try something
277out.
Junio C Hamano1a4e8412005-12-27 08:17:23278
Junio C Hamano076ffcc2013-02-06 05:13:21279Using Git for collaboration
Junio C Hamano1a4e8412005-12-27 08:17:23280---------------------------
281
Junio C Hamano076ffcc2013-02-06 05:13:21282Suppose that Alice has started a new project with a Git repository in
Junio C Hamanoc2b0a492006-01-23 07:54:36283/home/alice/project, and that Bob, who has a home directory on the
284same machine, wants to contribute.
Junio C Hamano1a4e8412005-12-27 08:17:23285
Junio C Hamanoc2b0a492006-01-23 07:54:36286Bob begins with:
Junio C Hamano1a4e8412005-12-27 08:17:23287
Junio C Hamanoc2b0a492006-01-23 07:54:36288------------------------------------------------
Junio C Hamano38ddcce2008-07-15 15:49:03289bob$ git clone /home/alice/project myrepo
Junio C Hamanoc2b0a492006-01-23 07:54:36290------------------------------------------------
Junio C Hamano1a4e8412005-12-27 08:17:23291
Junio C Hamanoc2b0a492006-01-23 07:54:36292This creates a new directory "myrepo" containing a clone of Alice's
293repository. The clone is on an equal footing with the original
Junio C Hamano341071d2006-06-04 07:24:48294project, possessing its own copy of the original project's history.
Junio C Hamano1a4e8412005-12-27 08:17:23295
Junio C Hamanoc2b0a492006-01-23 07:54:36296Bob then makes some changes and commits them:
Junio C Hamano1a4e8412005-12-27 08:17:23297
Junio C Hamanoc2b0a492006-01-23 07:54:36298------------------------------------------------
299(edit files)
Junio C Hamano38ddcce2008-07-15 15:49:03300bob$ git commit -a
Junio C Hamanoc2b0a492006-01-23 07:54:36301(repeat as necessary)
302------------------------------------------------
Junio C Hamano1a4e8412005-12-27 08:17:23303
Junio C Hamanoc2b0a492006-01-23 07:54:36304When he's ready, he tells Alice to pull changes from the repository
305at /home/bob/myrepo. She does this with:
Junio C Hamano1a4e8412005-12-27 08:17:23306
Junio C Hamanoc2b0a492006-01-23 07:54:36307------------------------------------------------
Junio C Hamano38ddcce2008-07-15 15:49:03308alice$ cd /home/alice/project
309alice$ git pull /home/bob/myrepo master
Junio C Hamanoc2b0a492006-01-23 07:54:36310------------------------------------------------
Junio C Hamano1a4e8412005-12-27 08:17:23311
Junio C Hamanof98fd882006-11-26 07:28:29312This merges the changes from Bob's "master" branch into Alice's
313current branch. If Alice has made her own changes in the meantime,
Junio C Hamano20d47e32009-01-26 06:36:02314then she may need to manually fix any conflicts.
Junio C Hamano1a4e8412005-12-27 08:17:23315
Junio C Hamanof98fd882006-11-26 07:28:29316The "pull" command thus performs two operations: it fetches changes
317from a remote branch, then merges them into the current branch.
Junio C Hamano1a4e8412005-12-27 08:17:23318
Junio C Hamano38ddcce2008-07-15 15:49:03319Note that in general, Alice would want her local changes committed before
320initiating this "pull". If Bob's work conflicts with what Alice did since
321their histories forked, Alice will use her working tree and the index to
322resolve conflicts, and existing local changes will interfere with the
Junio C Hamano076ffcc2013-02-06 05:13:21323conflict resolution process (Git will still perform the fetch but will
Junio C Hamano38ddcce2008-07-15 15:49:03324refuse to merge --- Alice will have to get rid of her local changes in
325some way and pull again when this happens).
326
327Alice can peek at what Bob did without merging first, using the "fetch"
328command; this allows Alice to inspect what Bob did, using a special
329symbol "FETCH_HEAD", in order to determine if he has anything worth
330pulling, like this:
331
332------------------------------------------------
333alice$ git fetch /home/bob/myrepo master
Junio C Hamanoa387df32008-08-29 08:56:58334alice$ git log -p HEAD..FETCH_HEAD
Junio C Hamano38ddcce2008-07-15 15:49:03335------------------------------------------------
336
337This operation is safe even if Alice has uncommitted local changes.
Junio C Hamano73d812c2009-07-01 02:33:06338The range notation "HEAD..FETCH_HEAD" means "show everything that is reachable
339from the FETCH_HEAD but exclude anything that is reachable from HEAD".
Junio C Hamanoa387df32008-08-29 08:56:58340Alice already knows everything that leads to her current state (HEAD),
Junio C Hamano73d812c2009-07-01 02:33:06341and reviews what Bob has in his state (FETCH_HEAD) that she has not
342seen with this command.
Junio C Hamanoa387df32008-08-29 08:56:58343
344If Alice wants to visualize what Bob did since their histories forked
345she can issue the following command:
346
347------------------------------------------------
348$ gitk HEAD..FETCH_HEAD
349------------------------------------------------
350
351This uses the same two-dot range notation we saw earlier with 'git log'.
352
353Alice may want to view what both of them did since they forked.
354She can use three-dot form instead of the two-dot form:
355
356------------------------------------------------
357$ gitk HEAD...FETCH_HEAD
358------------------------------------------------
359
360This means "show everything that is reachable from either one, but
361exclude anything that is reachable from both of them".
362
363Please note that these range notation can be used with both gitk
364and "git log".
Junio C Hamano38ddcce2008-07-15 15:49:03365
366After inspecting what Bob did, if there is nothing urgent, Alice may
367decide to continue working without pulling from Bob. If Bob's history
368does have something Alice would immediately need, Alice may choose to
369stash her work-in-progress first, do a "pull", and then finally unstash
370her work-in-progress on top of the resulting history.
371
Junio C Hamano35bd0252007-01-17 05:40:22372When you are working in a small closely knit group, it is not
373unusual to interact with the same repository over and over
374again. By defining 'remote' repository shorthand, you can make
375it easier:
376
377------------------------------------------------
Junio C Hamano38ddcce2008-07-15 15:49:03378alice$ git remote add bob /home/bob/myrepo
Junio C Hamano35bd0252007-01-17 05:40:22379------------------------------------------------
380
Junio C Hamano73d812c2009-07-01 02:33:06381With this, Alice can perform the first part of the "pull" operation
Junio C Hamano1aa40d22010-01-21 17:46:43382alone using the 'git fetch' command without merging them with her own
Junio C Hamano73d812c2009-07-01 02:33:06383branch, using:
Junio C Hamano1a4e8412005-12-27 08:17:23384
Junio C Hamanoc2b0a492006-01-23 07:54:36385-------------------------------------
Junio C Hamano38ddcce2008-07-15 15:49:03386alice$ git fetch bob
Junio C Hamanoc2b0a492006-01-23 07:54:36387-------------------------------------
Junio C Hamano1a4e8412005-12-27 08:17:23388
Junio C Hamano35bd0252007-01-17 05:40:22389Unlike the longhand form, when Alice fetches from Bob using a
Junio C Hamano1aa40d22010-01-21 17:46:43390remote repository shorthand set up with 'git remote', what was
Junio C Hamano97bcb482010-11-25 03:16:07391fetched is stored in a remote-tracking branch, in this case
Junio C Hamano35bd0252007-01-17 05:40:22392`bob/master`. So after this:
Junio C Hamanoc2b0a492006-01-23 07:54:36393
394-------------------------------------
Junio C Hamano38ddcce2008-07-15 15:49:03395alice$ git log -p master..bob/master
Junio C Hamanoc2b0a492006-01-23 07:54:36396-------------------------------------
397
398shows a list of all the changes that Bob made since he branched from
399Alice's master branch.
400
Junio C Hamano35bd0252007-01-17 05:40:22401After examining those changes, Alice
Junio C Hamanoedd2b0a2007-01-15 06:12:45402could merge the changes into her master branch:
Junio C Hamanoc2b0a492006-01-23 07:54:36403
404-------------------------------------
Junio C Hamano38ddcce2008-07-15 15:49:03405alice$ git merge bob/master
Junio C Hamanoc2b0a492006-01-23 07:54:36406-------------------------------------
407
Junio C Hamano97bcb482010-11-25 03:16:07408This `merge` can also be done by 'pulling from her own remote-tracking
409branch', like this:
Junio C Hamanof98fd882006-11-26 07:28:29410
411-------------------------------------
Junio C Hamano38ddcce2008-07-15 15:49:03412alice$ git pull . remotes/bob/master
Junio C Hamanof98fd882006-11-26 07:28:29413-------------------------------------
414
Junio C Hamano35bd0252007-01-17 05:40:22415Note that git pull always merges into the current branch,
Junio C Hamanoa6387422007-08-25 03:54:27416regardless of what else is given on the command line.
Junio C Hamanof98fd882006-11-26 07:28:29417
Junio C Hamanoc2b0a492006-01-23 07:54:36418Later, Bob can update his repo with Alice's latest changes using
419
420-------------------------------------
Junio C Hamano38ddcce2008-07-15 15:49:03421bob$ git pull
Junio C Hamanoc2b0a492006-01-23 07:54:36422-------------------------------------
423
424Note that he doesn't need to give the path to Alice's repository;
Junio C Hamano076ffcc2013-02-06 05:13:21425when Bob cloned Alice's repository, Git stored the location of her
Junio C Hamanod3361ad2007-01-01 03:20:24426repository in the repository configuration, and that location is
427used for pulls:
Junio C Hamanoc2b0a492006-01-23 07:54:36428
429-------------------------------------
Junio C Hamano38ddcce2008-07-15 15:49:03430bob$ git config --get remote.origin.url
Junio C Hamano330aae62007-07-06 17:01:58431/home/alice/project
Junio C Hamanoc2b0a492006-01-23 07:54:36432-------------------------------------
433
Junio C Hamano1aa40d22010-01-21 17:46:43434(The complete configuration created by 'git clone' is visible using
Junio C Hamanofce7c7e2008-07-02 03:06:38435`git config -l`, and the linkgit:git-config[1] man page
Junio C Hamanod3361ad2007-01-01 03:20:24436explains the meaning of each option.)
437
438Git also keeps a pristine copy of Alice's master branch under the
439name "origin/master":
440
441-------------------------------------
Junio C Hamano38ddcce2008-07-15 15:49:03442bob$ git branch -r
Junio C Hamanod3361ad2007-01-01 03:20:24443 origin/master
444-------------------------------------
Junio C Hamanoc2b0a492006-01-23 07:54:36445
446If Bob later decides to work from a different host, he can still
447perform clones and pulls using the ssh protocol:
448
449-------------------------------------
Junio C Hamano38ddcce2008-07-15 15:49:03450bob$ git clone alice.org:/home/alice/project myrepo
Junio C Hamanoc2b0a492006-01-23 07:54:36451-------------------------------------
452
Junio C Hamano076ffcc2013-02-06 05:13:21453Alternatively, Git has a native protocol, or can use rsync or http;
Junio C Hamano35738e82008-01-07 07:55:46454see linkgit:git-pull[1] for details.
Junio C Hamanoc2b0a492006-01-23 07:54:36455
456Git can also be used in a CVS-like mode, with a central repository
Junio C Hamano35738e82008-01-07 07:55:46457that various users push changes to; see linkgit:git-push[1] and
Junio C Hamanofce7c7e2008-07-02 03:06:38458linkgit:gitcvs-migration[7].
Junio C Hamanoc2b0a492006-01-23 07:54:36459
Junio C Hamano6f8a7902006-05-22 01:10:13460Exploring history
461-----------------
Junio C Hamanoc2b0a492006-01-23 07:54:36462
Junio C Hamano6f8a7902006-05-22 01:10:13463Git history is represented as a series of interrelated commits. We
Junio C Hamano1aa40d22010-01-21 17:46:43464have already seen that the 'git log' command can list those commits.
Junio C Hamano6f8a7902006-05-22 01:10:13465Note that first line of each git log entry also gives a name for the
466commit:
Junio C Hamanoc2b0a492006-01-23 07:54:36467
468-------------------------------------
Junio C Hamano6f8a7902006-05-22 01:10:13469$ git log
470commit c82a22c39cbc32576f64f5c6b3f24b99ea8149c7
471Author: Junio C Hamano <junkio@cox.net>
472Date: Tue May 16 17:18:22 2006 -0700
473
474 merge-base: Clarify the comments on post processing.
Junio C Hamanoc2b0a492006-01-23 07:54:36475-------------------------------------
476
Junio C Hamano1aa40d22010-01-21 17:46:43477We can give this name to 'git show' to see the details about this
Junio C Hamano6f8a7902006-05-22 01:10:13478commit.
Junio C Hamanoc2b0a492006-01-23 07:54:36479
480-------------------------------------
Junio C Hamano6f8a7902006-05-22 01:10:13481$ git show c82a22c39cbc32576f64f5c6b3f24b99ea8149c7
Junio C Hamanoc2b0a492006-01-23 07:54:36482-------------------------------------
483
Junio C Hamanoeb692952007-01-03 22:02:12484But there are other ways to refer to commits. You can use any initial
Junio C Hamano6f8a7902006-05-22 01:10:13485part of the name that is long enough to uniquely identify the commit:
Junio C Hamanoc2b0a492006-01-23 07:54:36486
487-------------------------------------
Junio C Hamano6f8a7902006-05-22 01:10:13488$ git show c82a22c39c # the first few characters of the name are
489# usually enough
490$ git show HEAD # the tip of the current branch
491$ git show experimental # the tip of the "experimental" branch
Junio C Hamanoc2b0a492006-01-23 07:54:36492-------------------------------------
493
Junio C Hamanoeb692952007-01-03 22:02:12494Every commit usually has one "parent" commit
495which points to the previous state of the project:
Junio C Hamanoc2b0a492006-01-23 07:54:36496
497-------------------------------------
Junio C Hamano6f8a7902006-05-22 01:10:13498$ git show HEAD^ # to see the parent of HEAD
499$ git show HEAD^^ # to see the grandparent of HEAD
500$ git show HEAD~4 # to see the great-great grandparent of HEAD
Junio C Hamanoc2b0a492006-01-23 07:54:36501-------------------------------------
502
Junio C Hamano6f8a7902006-05-22 01:10:13503Note that merge commits may have more than one parent:
Junio C Hamanoc2b0a492006-01-23 07:54:36504
505-------------------------------------
Junio C Hamano6f8a7902006-05-22 01:10:13506$ git show HEAD^1 # show the first parent of HEAD (same as HEAD^)
507$ git show HEAD^2 # show the second parent of HEAD
Junio C Hamanoc2b0a492006-01-23 07:54:36508-------------------------------------
509
Junio C Hamano6f8a7902006-05-22 01:10:13510You can also give commits names of your own; after running
Junio C Hamanoc2b0a492006-01-23 07:54:36511
512-------------------------------------
Junio C Hamanofce7c7e2008-07-02 03:06:38513$ git tag v2.5 1b2e1d63ff
Junio C Hamanoc2b0a492006-01-23 07:54:36514-------------------------------------
515
Junio C Hamano6f8a7902006-05-22 01:10:13516you can refer to 1b2e1d63ff by the name "v2.5". If you intend to
517share this name with other people (for example, to identify a release
Junio C Hamanoc2b0a492006-01-23 07:54:36518version), you should create a "tag" object, and perhaps sign it; see
Junio C Hamano35738e82008-01-07 07:55:46519linkgit:git-tag[1] for details.
Junio C Hamanoc2b0a492006-01-23 07:54:36520
Junio C Hamano076ffcc2013-02-06 05:13:21521Any Git command that needs to know a commit can take any of these
Junio C Hamano6f8a7902006-05-22 01:10:13522names. For example:
Junio C Hamanoc2b0a492006-01-23 07:54:36523
524-------------------------------------
Junio C Hamano6f8a7902006-05-22 01:10:13525$ git diff v2.5 HEAD # compare the current HEAD to v2.5
526$ git branch stable v2.5 # start a new branch named "stable" based
527 # at v2.5
528$ git reset --hard HEAD^ # reset your current branch and working
Junio C Hamano33db4372006-06-07 19:51:45529 # directory to its state at HEAD^
Junio C Hamanoc2b0a492006-01-23 07:54:36530-------------------------------------
531
Junio C Hamano6f8a7902006-05-22 01:10:13532Be careful with that last command: in addition to losing any changes
533in the working directory, it will also remove all later commits from
534this branch. If this branch is the only branch containing those
Junio C Hamano1aa40d22010-01-21 17:46:43535commits, they will be lost. Also, don't use 'git reset' on a
Junio C Hamanoee1e4282007-02-04 08:32:04536publicly-visible branch that other developers pull from, as it will
537force needless merges on other developers to clean up the history.
Junio C Hamano1aa40d22010-01-21 17:46:43538If you need to undo changes that you have pushed, use 'git revert'
Junio C Hamano16cf1582007-02-05 07:21:48539instead.
Junio C Hamano6f8a7902006-05-22 01:10:13540
Junio C Hamano1aa40d22010-01-21 17:46:43541The 'git grep' command can search for strings in any version of your
Junio C Hamano6f8a7902006-05-22 01:10:13542project, so
543
544-------------------------------------
545$ git grep "hello" v2.5
546-------------------------------------
547
Junio C Hamano341071d2006-06-04 07:24:48548searches for all occurrences of "hello" in v2.5.
Junio C Hamano6f8a7902006-05-22 01:10:13549
Junio C Hamano1aa40d22010-01-21 17:46:43550If you leave out the commit name, 'git grep' will search any of the
Junio C Hamano6f8a7902006-05-22 01:10:13551files it manages in your current directory. So
552
553-------------------------------------
554$ git grep "hello"
555-------------------------------------
556
Junio C Hamano076ffcc2013-02-06 05:13:21557is a quick way to search just the files that are tracked by Git.
Junio C Hamano6f8a7902006-05-22 01:10:13558
Junio C Hamano076ffcc2013-02-06 05:13:21559Many Git commands also take sets of commits, which can be specified
Junio C Hamano1aa40d22010-01-21 17:46:43560in a number of ways. Here are some examples with 'git log':
Junio C Hamano6f8a7902006-05-22 01:10:13561
562-------------------------------------
563$ git log v2.5..v2.6 # commits between v2.5 and v2.6
564$ git log v2.5.. # commits since v2.5
565$ git log --since="2 weeks ago" # commits from the last 2 weeks
566$ git log v2.5.. Makefile # commits since v2.5 which modify
567# Makefile
568-------------------------------------
569
Junio C Hamano1aa40d22010-01-21 17:46:43570You can also give 'git log' a "range" of commits where the first is not
Junio C Hamano6f8a7902006-05-22 01:10:13571necessarily an ancestor of the second; for example, if the tips of
Junio C Hamano73d812c2009-07-01 02:33:06572the branches "stable" and "master" diverged from a common
Junio C Hamano6f8a7902006-05-22 01:10:13573commit some time ago, then
574
575-------------------------------------
Junio C Hamano73d812c2009-07-01 02:33:06576$ git log stable..master
Junio C Hamano6f8a7902006-05-22 01:10:13577-------------------------------------
578
Junio C Hamano73d812c2009-07-01 02:33:06579will list commits made in the master branch but not in the
Junio C Hamano6f8a7902006-05-22 01:10:13580stable branch, while
581
582-------------------------------------
Junio C Hamano73d812c2009-07-01 02:33:06583$ git log master..stable
Junio C Hamano6f8a7902006-05-22 01:10:13584-------------------------------------
585
586will show the list of commits made on the stable branch but not
Junio C Hamano73d812c2009-07-01 02:33:06587the master branch.
Junio C Hamano6f8a7902006-05-22 01:10:13588
Junio C Hamano1aa40d22010-01-21 17:46:43589The 'git log' command has a weakness: it must present commits in a
Junio C Hamano6f8a7902006-05-22 01:10:13590list. When the history has lines of development that diverged and
Junio C Hamano1aa40d22010-01-21 17:46:43591then merged back together, the order in which 'git log' presents
Junio C Hamano6f8a7902006-05-22 01:10:13592those commits is meaningless.
593
Junio C Hamano4fbdd442009-01-06 05:56:24594Most projects with multiple contributors (such as the Linux kernel,
Junio C Hamano076ffcc2013-02-06 05:13:21595or Git itself) have frequent merges, and 'gitk' does a better job of
Junio C Hamano6f8a7902006-05-22 01:10:13596visualizing their history. For example,
597
598-------------------------------------
599$ gitk --since="2 weeks ago" drivers/
600-------------------------------------
601
602allows you to browse any commits from the last 2 weeks of commits
Junio C Hamanobb8fb052006-05-30 07:21:12603that modified files under the "drivers" directory. (Note: you can
604adjust gitk's fonts by holding down the control key while pressing
605"-" or "+".)
Junio C Hamano6f8a7902006-05-22 01:10:13606
607Finally, most commands that take filenames will optionally allow you
608to precede any filename by a commit, to specify a particular version
Junio C Hamanobb8fb052006-05-30 07:21:12609of the file:
Junio C Hamano6f8a7902006-05-22 01:10:13610
611-------------------------------------
612$ git diff v2.5:Makefile HEAD:Makefile.in
613-------------------------------------
Junio C Hamanoc2b0a492006-01-23 07:54:36614
Junio C Hamano1aa40d22010-01-21 17:46:43615You can also use 'git show' to see any such file:
Junio C Hamanobb8fb052006-05-30 07:21:12616
617-------------------------------------
Junio C Hamanoeb692952007-01-03 22:02:12618$ git show v2.5:Makefile
Junio C Hamanobb8fb052006-05-30 07:21:12619-------------------------------------
620
Junio C Hamanoc2b0a492006-01-23 07:54:36621Next Steps
622----------
623
Junio C Hamano6f8a7902006-05-22 01:10:13624This tutorial should be enough to perform basic distributed revision
625control for your projects. However, to fully understand the depth
Junio C Hamano076ffcc2013-02-06 05:13:21626and power of Git you need to understand two simple ideas on which it
Junio C Hamano6f8a7902006-05-22 01:10:13627is based:
Junio C Hamanoc2b0a492006-01-23 07:54:36628
Junio C Hamano6f8a7902006-05-22 01:10:13629 * The object database is the rather elegant system used to
630 store the history of your project--files, directories, and
631 commits.
632
633 * The index file is a cache of the state of a directory tree,
634 used to create commits, check out working directories, and
635 hold the various trees involved in a merge.
636
Junio C Hamanofce7c7e2008-07-02 03:06:38637Part two of this tutorial explains the object
Junio C Hamano6f8a7902006-05-22 01:10:13638database, the index file, and a few other odds and ends that you'll
Junio C Hamano076ffcc2013-02-06 05:13:21639need to make the most of Git. You can find it at linkgit:gittutorial-2[7].
Junio C Hamano6f8a7902006-05-22 01:10:13640
Junio C Hamanoed7f4f62007-05-20 09:09:09641If you don't want to continue with that right away, a few other
Junio C Hamano6f8a7902006-05-22 01:10:13642digressions that may be interesting at this point are:
Junio C Hamanoc2b0a492006-01-23 07:54:36643
Junio C Hamano35738e82008-01-07 07:55:46644 * linkgit:git-format-patch[1], linkgit:git-am[1]: These convert
Junio C Hamanoc2b0a492006-01-23 07:54:36645 series of git commits into emailed patches, and vice versa,
Junio C Hamano4fbdd442009-01-06 05:56:24646 useful for projects such as the Linux kernel which rely heavily
Junio C Hamanoc2b0a492006-01-23 07:54:36647 on emailed patches.
648
Junio C Hamano35738e82008-01-07 07:55:46649 * linkgit:git-bisect[1]: When there is a regression in your
Junio C Hamanoc2b0a492006-01-23 07:54:36650 project, one way to track down the bug is by searching through
651 the history to find the exact commit that's to blame. Git bisect
652 can help you perform a binary search for that commit. It is
653 smart enough to perform a close-to-optimal search even in the
654 case of complex non-linear history with lots of merged branches.
655
Junio C Hamano804b5212009-06-07 16:05:03656 * linkgit:gitworkflows[7]: Gives an overview of recommended
657 workflows.
658
Junio C Hamano446e30b2014-10-16 21:30:32659 * linkgit:giteveryday[7]: Everyday Git with 20 Commands Or So.
Junio C Hamano6f8a7902006-05-22 01:10:13660
Junio C Hamanofce7c7e2008-07-02 03:06:38661 * linkgit:gitcvs-migration[7]: Git for CVS users.
Junio C Hamanodfccbb02008-05-26 01:16:14662
663SEE ALSO
664--------
665linkgit:gittutorial-2[7],
666linkgit:gitcvs-migration[7],
Junio C Hamano9e1793f2008-06-02 07:31:16667linkgit:gitcore-tutorial[7],
668linkgit:gitglossary[7],
Junio C Hamanof66ecee2008-11-17 18:25:43669linkgit:git-help[1],
Junio C Hamano804b5212009-06-07 16:05:03670linkgit:gitworkflows[7],
Junio C Hamano446e30b2014-10-16 21:30:32671linkgit:giteveryday[7],
Junio C Hamanodfccbb02008-05-26 01:16:14672link:user-manual.html[The Git User's Manual]
673
674GIT
675---
Junio C Hamanof7c042d2008-06-06 22:50:53676Part of the linkgit:git[1] suite.